projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca38bbb
)
(DISP_CHAR_VECTOR): Allow bare 8-bit in display-table.
author
Kenichi Handa
<handa@m17n.org>
Thu, 27 Feb 1997 10:44:19 +0000
(10:44 +0000)
committer
Kenichi Handa
<handa@m17n.org>
Thu, 27 Feb 1997 10:44:19 +0000
(10:44 +0000)
src/disptab.h
patch
|
blob
|
history
diff --git
a/src/disptab.h
b/src/disptab.h
index 3458105b9a7a578309b3f54a3e990f3c1ccae561..6ee008453dffc04e5af4dc3061b8fad6428b384e 100644
(file)
--- a/
src/disptab.h
+++ b/
src/disptab.h
@@
-33,7
+33,8
@@
Boston, MA 02111-1307, USA. */
#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
-#define DISP_CHAR_VECTOR(dp, c) ((c) < 0x80 ? (dp)->contents[c] : Qnil)
+#define DISP_CHAR_VECTOR(dp, c) \
+ (SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : Qnil)
/* Defined in window.c. */
extern struct Lisp_Char_Table *window_display_table ();